home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 050 / cismsg22.arc / CISMSG22.DOC < prev   
Text File  |  1986-08-20  |  4KB  |  95 lines

  1.  
  2. CISMSG Command
  3. --------------
  4.  
  5. Purpose:   This program copies a file containing CIS messages into
  6.            a new file with the messages in subject or number order.
  7.  
  8. Format:
  9. |          CISMSG  [d:][path]fname[.ext]  [d:][path]fname[.ext]
  10. |                  [/n]  [/M]
  11.  
  12. Remarks:   Records read from the input file ending with a carriage
  13.            return and line feed are considered logical records and
  14.            may be up to 255 characters in length.
  15.  
  16.            Tab characters should not be present in the input file.
  17.  
  18.            Messages from a single section may be selected by using
  19.            the /n option. Specify a one or two digit section number
  20.            in place of the n.
  21.  
  22.            The  records are sorted into section and subject order,
  23. |          unless  the  /M  option  is  used  to  specify that the
  24. |          messages be sorted in message number order.
  25.  
  26.            Any superfluous data, such as bulletins, become part of
  27.            the preceding message.  Duplicate  messages are skipped
  28.            only if they are identical.
  29.  
  30.            All available memory is used. A maximum of 64K is  used
  31.            for I/O buffers.  Half of the available memory  is used
  32.            for containing message data. Each message  requires  32
  33.            bytes.
  34.  
  35.            Depending  on the  amount of  memory  available,  up to
  36.            10000 records may be ordered.  Neither the  size of the
  37.            file, nor the lengths of messages,  affects the maximum
  38.            number of messages that can be processed.
  39.  
  40.            For best performance, place the input message  file  on
  41.            the fastest disk drive, e.g. RAM disk.
  42.  
  43. Examples:
  44.            - Sort the messages from file IBMSW.719 on drive A,  to
  45.              a new file called IBMSW.XXX on drive B
  46.  
  47.                 CISMSG A:IBMSW.719 B:IBMSW.XXX
  48.  
  49.            - Sort messages in file IBMSW.MON which is on the current
  50.              drive, and copy to a new files called IBMSW.MON on drive B
  51.  
  52.                 CISMSG IBMSW.MON B:
  53.  
  54.            - Supply the file names by using prompts
  55.  
  56.                 CISMSG
  57.                 Enter INPUT file name-  A:IBMSW.719
  58.                 Enter OUTPUT file name- C:
  59.  
  60.            - Select section 8 messages from file IBMNEW.MSG
  61.  
  62.                 CISMSG IBMNEW.MSG IBMNEW.8 /8
  63.  
  64. |          - Sort the messages in the file IBMSWM.ATO by message number:
  65. |
  66. |               CISMSG IBMSWM.ATO IBMSW.MSG /M
  67.  
  68.  
  69. Notes:     (c) Copyright Vernon D. Buerg 1985, 1986
  70.                456 Lakeshire Drive
  71.                Daly City, CA 94015
  72.                CompuServe: 70007,1212
  73.                Fidonet:  125/4
  74.                BBS: (415)-994-2944
  75.  
  76.            Written using MS-MASM for the IBM PC and DOS 2.0
  77.            through DOS 3.1.
  78.  
  79.            For private, personal use only. Not for sale or hire.
  80.  
  81.            Version 1.7, Sig version 3B(24), March 26, 1985.
  82.            Version 1.8, Sig versions 3B35,37, April 28, 1985.
  83.            Version 1.9, Correct "Sb:" incorrect sort order. June 10,1985.
  84.              Corrected by short patch on 8/19/85 to allow processing
  85.              more than 2047 messages. Sig version 4A(45).
  86.            Version 2.0, Sept 15, 1985,
  87.              Adds the /n command line option to select messages
  88.              for a single section only.
  89.            Version 2.1, July 1, 1986, through Sig version 4A(70).
  90.              Corrections for large files (over 1 Mb).
  91. |          Version 2.2, August 20, 1986.
  92. |            Add /M option to sort messages by number only.
  93. |            Correct problem when there are no valid messages found
  94.  
  95.